home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Reference Guide / C-C++ Interactive Reference Guide.iso / c_ref / csource4 / 273_01 / flushkey.cc < prev    next >
Encoding:
Text File  |  1987-09-24  |  100 b   |  6 lines

  1. flush_key()
  2. /* This will flush the keyboard buffer */
  3. {
  4.     while(bioskey(1) != 0) bioskey(0);
  5. }
  6.